where('email', $username)->first(); } public function isAdmin() { return ($this->role == 'admin'); } public static function login($request) { $remember = $request->remember; $email = $request->email; $password = $request->password; return (\Auth::attempt(array('email' => $email, 'password' => $password), $remember)); } public function getFormattedCreatedAtAttribute($value) { $dateFormat = CompanySetting::getSetting('carbon_date_format', $this->company_id); return Carbon::parse($this->created_at)->format($dateFormat); } public function estimates() { return $this->hasMany(Estimate::class); } public function currency() { return $this->belongsTo(Currency::class); } public function company() { return $this->belongsTo(Company::class); } public function addresses() { return $this->hasMany(Address::class); } public function expenses() { return $this->hasMany(Expense::class); } public function billingAddress() { return $this->hasOne(Address::class)->where('type', Address::BILLING_TYPE); } public function shippingAddress() { return $this->hasOne(Address::class)->where('type', Address::SHIPPING_TYPE); } public function payments() { return $this->hasMany(Payment::class); } public function invoices() { return $this->hasMany(Invoice::class); } /** * Override the mail body for reset password notification mail. */ public function sendPasswordResetNotification($token) { $this->notify(new MailResetPasswordNotification($token)); } public function scopeWhereOrder($query, $orderByField, $orderBy) { $query->orderBy($orderByField, $orderBy); } public function scopeWhereSearch($query, $search) { foreach (explode(' ', $search) as $term) { $query->where(function ($query) use ($term) { $query->where('name', 'LIKE', '%'.$term.'%') ->orWhere('company_name', 'LIKE', '%'.$term.'%'); }); } } public function scopeWhereContactName($query, $contactName) { return $query->where('contact_name', 'LIKE', '%'.$contactName.'%'); } public function scopeWhereDisplayName($query, $displayName) { return $query->where('name', 'LIKE', '%'.$displayName.'%'); } public function scopeWherePhone($query, $phone) { return $query->where('phone', 'LIKE', '%'.$phone.'%'); } public function scopeCustomer($query) { return $query->where('role', 'customer'); } public function scopeApplyFilters($query, array $filters) { $filters = collect($filters); if ($filters->get('search')) { $query->whereSearch($filters->get('search')); } if ($filters->get('contact_name')) { $query->whereContactName($filters->get('contact_name')); } if ($filters->get('display_name')) { $query->whereDisplayName($filters->get('display_name')); } if ($filters->get('phone')) { $query->wherePhone($filters->get('phone')); } if ($filters->get('orderByField') || $filters->get('orderBy')) { $field = $filters->get('orderByField') ? $filters->get('orderByField') : 'name'; $orderBy = $filters->get('orderBy') ? $filters->get('orderBy') : 'asc'; $query->whereOrder($field, $orderBy); } } public function scopeWhereCompany($query, $company_id) { $query->where('users.company_id', $company_id); } public function scopeApplyInvoiceFilters($query, array $filters) { $filters = collect($filters); if ($filters->get('from_date') && $filters->get('to_date')) { $start = Carbon::createFromFormat('d/m/Y', $filters->get('from_date')); $end = Carbon::createFromFormat('d/m/Y', $filters->get('to_date')); $query->invoicesBetween($start, $end); } } public function scopeInvoicesBetween($query, $start, $end) { $query->whereHas('invoices', function ($query) use ($start, $end) { $query->whereBetween( 'invoice_date', [$start->format('Y-m-d'), $end->format('Y-m-d')] ); }); } public static function deleteCustomer($id) { $customer = self::find($id); if ($customer->estimates()->exists()) { $customer->estimates()->delete(); } if ($customer->invoices()->exists()) { $customer->invoices()->delete(); } if ($customer->payments()->exists()) { $customer->payments()->delete(); } if ($customer->addresses()->exists()) { $customer->addresses()->delete(); } $customer->delete(); return true; } public function getAvatarAttribute() { $avatar = $this->getMedia('admin_avatar')->first(); if ($avatar) { return asset($avatar->getUrl()); } return ; } }