'int', 'lead_id' => 'int', 'new_drafts' => 'bool', 'sf_guard_user_id' => 'int', 'branch_id' => 'int', 'service_fee' => 'float', 'travel_country_id' => 'int', 'travel_category_id' => 'int', 'pax' => 'int', 'coupon_id' => 'int', 'website_id' => 'int', 'participant_salutation_id' => 'int', 'travel_company_id' => 'int', 'travel_documents' => 'bool', 'price' => 'float', 'price_total' => 'float', 'deposit_total' => 'float', 'final_payment' => 'float', 'travelagenda_id' => 'int', 'paying_out' => 'int', 'hold' => 'int', 'airline_id' => 'int', 'refund' => 'int', 'xx_tkt' => 'int', ]; protected $dates = [ 'booking_date', 'start_date', 'end_date', 'participant_birthdate', 'final_payment_date', 'refund_date' ]; protected $fillable = [ 'booking_date', 'customer_id', 'lead_id', 'new_drafts', 'sf_guard_user_id', 'branch_id', 'service_fee', 'travel_country_id', 'travel_category_id', 'pax', 'coupon_id', 'title', 'start_date', 'end_date', 'website_id', 'travel_number', 'participant_name', 'participant_firstname', 'participant_birthdate', 'participant_salutation_id', 'ev_number', 'merlin_knr', 'merlin_order_number', 'travel_company_id', 'travel_documents', 'price', 'price_total', 'deposit_total', 'final_payment', 'final_payment_date', 'travelagenda_id', 'paying_out', 'paying_out_status', 'airline_id', 'hold', 'refund', 'refund_date', 'xx_tkt', 'xx_tkt_date', ]; public static $paying_out_types = [ 0 => '-', 1 => 'Gutschein', 2 => 'Auszahlung', 3 => 'Umbuchung', 4 => 'AZ + GS', 5 => 'AZ o. FP', ]; public static $refund_types = [ 0 => '-', 1 => 'eingereicht', 2 => 'erledigt', ]; public static $xx_tkt_types = [ 0 => '-', 1 => 'offen', 2 => 'erledigt', ]; public static $paying_out_status_types = [ 0 => '-', 1 => 'offen', 2 => 'erledigt', ]; public static $customer_mail_dirs = [ 0 => ['name' => 'Reisender', 'icon'=>'ion-ios-filing'], 1 => ['name' => 'Agentur', 'icon'=>'ion-ios-folder-open'], 2 => ['name' => 'Flug', 'icon'=>'ion-ios-airplane'], 3 => ['name' => 'Versicherung', 'icon'=>'ion-ios-help-buoy'], 11 => ['name' => 'Entwürfe', 'icon'=>'ion-md-create'], 12 => ['name' => 'Papierkorb', 'icon'=>'ion-md-trash'], ]; protected $paying_out_colors = [ 0 => '', 1 => 'info', 2 => 'dark', 3 => 'warning', 4 => 'warning', 5 => 'warning', ]; protected $refund_colors = [ 0 => '', 1 => 'warning', 2 => 'success', ]; protected $xx_tkt_colors = [ 0 => '', 1 => 'danger', 2 => 'success', ]; protected $paying_out_status_colors = [ 0 => '', 1 => 'danger', 2 => 'success', ]; /* * *