Example #1
0
 public function setDefaults()
 {
     if (!$this->country_id) {
         $this->country = Country::first();
     }
     if (!$this->state_id) {
         $this->state = State::first();
     }
     if (!$this->template_id) {
         $this->template_id = InvoiceTemplate::pluck('id');
     }
 }