code; } $language_code = Session::get('locale', Config::get('app.locale')); if(Language::where('code', $language_code)->first()->rtl == 1){ $direction = 'rtl'; $text_align = 'right'; $not_text_align = 'left'; }else{ $direction = 'ltr'; $text_align = 'left'; $not_text_align = 'right'; } if($currency_code == 'BDT' || $language_code == 'bd'){ // bengali font $font_family = "'Hind Siliguri','sans-serif'"; }elseif($currency_code == 'KHR' || $language_code == 'kh'){ // khmer font $font_family = "'Hanuman','sans-serif'"; }elseif($currency_code == 'AMD'){ // Armenia font $font_family = "'arnamu','sans-serif'"; // }elseif($currency_code == 'ILS'){ // // Israeli font // $font_family = "'Varela Round','sans-serif'"; }elseif($currency_code == 'AED' || $currency_code == 'EGP' || $language_code == 'sa' || $currency_code == 'IQD' || $language_code == 'ir' || $language_code == 'om' || $currency_code == 'ROM' || $currency_code == 'SDG' || $currency_code == 'ILS'){ // middle east/arabic/Israeli font $font_family = "'Baloo Bhaijaan 2','sans-serif'"; }elseif($currency_code == 'THB'){ // thai font $font_family = "'Kanit','sans-serif'"; }else{ // general for all $font_family = "'Roboto','sans-serif'"; } // $config = ['instanceConfigurator' => function($mpdf) { // $mpdf->showImageErrors = true; // }]; // mpdf config will be used in 4th params of loadview $config = []; $order = Order::findOrFail($id); return PDF::loadView('backend.invoices.invoice',[ 'order' => $order, 'font_family' => $font_family, 'direction' => $direction, 'text_align' => $text_align, 'not_text_align' => $not_text_align ], [], $config)->download('order-'.$order->code.'.pdf'); } }