home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Eloquent
➕ New
📤 Upload
✎ Editing:
ModelNotFoundException.php
← Back
<?php namespace Illuminate\Database\Eloquent; class ModelNotFoundException extends \RuntimeException { /** * Name of the affected Eloquent model. * * @var string */ protected $model; /** * Set the affected Eloquent model. * * @param string $model * @return $this */ public function setModel($model) { $this->model = $model; $this->message = "No query results for model [{$model}]."; return $this; } /** * Get the affected Eloquent model. * * @return string */ public function getModel() { return $this->model; } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel