Skip to main content

Nosotros Model

The Nosotros model represents About Us company information in the Dashboard Laravel application. This model uses default Eloquent behavior for storing organizational details.

Model Overview

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Nosotros extends Model
{
    //
}

Table Information

table
string
default:"nosotros"
Database table name (follows Laravel naming convention)
timestamps
boolean
default:"true"
Automatically manages created_at and updated_at columns

Database Schema

The nosotros table is created via migration:
Schema::create('nosotros', function (Blueprint $table) {
    $table->id();
    $table->timestamps();
});

Usage

Basic CRUD operations with the Nosotros model:
use App\Models\Nosotros;

$about = Nosotros::create([
    // Add attributes as needed
]);
This is a minimal model scaffold. Extend with fillable attributes, relationships, and custom methods as needed for your About Us page requirements.

About Us Feature

User-facing About Us page documentation

Database Schema

Complete database structure reference

Build docs developers (and LLMs) love